home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / Editors / emacs / Emacs-1.14b1 / •emacs next >
Encoding:
Text File  |  1994-05-23  |  1.2 KB  |  36 lines  |  [TEXT/EMAC]

  1. ;;;
  2. ;;; Distribution *emacs file
  3. ;;;
  4.  
  5. ;;; Add to this file any Emacs commands you want executed every time Emacs
  6. ;;; starts up.
  7.  
  8. ;;; Uncomment this next line to automatically load the Textures Apple event
  9. ;;; code and menu at startup.
  10. ;(load "textures")
  11.  
  12. ;;; Uncomment to automatically load ispell at startup.
  13. ;(load "ispell")
  14.  
  15. ;;; Uncomment to automatically load the Think C support.  This will also
  16. ;;; load Think Reference support.
  17. ;(load "think-c/think-c")
  18.  
  19. ;;; Uncomment to automatically load the Think Reference support without
  20. ;;; Think C support.
  21. ;(load "think-c/think-ref")
  22.  
  23. ;;; This is an example of keyboard rebinding.  It makes these assignments:
  24. ;;;   F5 splits the display vertically
  25. ;;;   F6 enlarges the window containing the cursor
  26. ;;;   F7 shrinks the window containing the cursor
  27. ;;;   F8 eliminates all split windows
  28. ;;; See the file ~/lisp/mac/Macintosh-win.el for the codes to define other keys.
  29.  
  30. (setq mac-raw-map-hooks
  31.       (list
  32.        '(define-key mac-raw-map "\040" 'split-window-vertically)
  33.        '(define-key mac-raw-map "\041" 'enlarge-window)
  34.        '(define-key mac-raw-map "\042" 'shrink-window)
  35.        '(define-key mac-raw-map "\044" 'delete-other-windows)))
  36.